refactor: remove PreExecCheck leaky abstraction and fix sync-over-async#405
Merged
currantw merged 4 commits intoMay 14, 2026
Conversation
ValkeyBatch.PreExecCheck() was a virtual hook that existed solely to support transaction preconditions. Batches have no concept of preconditions, so this was transaction-specific logic leaking into the base class. Additionally, ValkeyTransaction.PreExecCheck() called ExecuteImpl().GetAwaiter().GetResult() — the last remaining sync-over-async call in the codebase — which risks deadlocks in environments with a synchronization context (e.g. ASP.NET). Changes: - Remove virtual PreExecCheck() from ValkeyBatch and the if (PreExecCheck()) guard from ExecuteImpl(). ExecuteImpl() now unconditionally executes the batch, which is the correct behaviour for ValkeyBatch (conditions are a transaction concern only). - Move condition evaluation into ValkeyTransaction.ExecuteAsync() directly, using await instead of .GetAwaiter().GetResult(). - Short-circuit early (set _tcs result to null and return false) as soon as any condition fails, avoiding unnecessary work. - Rename the inner batch variable from b to conditionBatch for clarity. Fixes valkey-io#266 Signed-off-by: currantw <taylor.curran@improving.com>
Signed-off-by: currantw <taylor.curran@improving.com>
…-io#402) Signed-off-by: currantw <taylor.curran@improving.com>
… into refactor/remove-pre-exec-check-leaky-abstraction
alexr-bq
approved these changes
May 14, 2026
xShinnRyuu
approved these changes
May 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Based on #359 (by @makubo-aws) with DCO signoff added. Closes #266.